RequestEntriesRequest

data class RequestEntriesRequest(cacheId: CacheId, skipCount: Int?, pageSize: Int?, pathFilter: String?)

Represents request frame that can be used with CacheStorage#requestEntries operation call.

Requests data from cache.

See also

Constructors

RequestEntriesRequest
Link copied to clipboard
fun RequestEntriesRequest(cacheId: CacheId, skipCount: Int? = null, pageSize: Int? = null, pathFilter: String? = null)

Properties

cacheId
Link copied to clipboard
val cacheId: CacheId
ID of cache to get entries from.
pageSize
Link copied to clipboard
val pageSize: Int? = null
Number of records to fetch.
pathFilter
Link copied to clipboard
val pathFilter: String? = null
If present, only return the entries containing this substring in the path
skipCount
Link copied to clipboard
val skipCount: Int? = null
Number of records to skip.

Sources

jvm source
Link copied to clipboard